home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / edsspell / spelldef.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  1009 b   |  27 lines

  1. (* SPELLDEF.PAS - Copyright (c) 1995-1996, Eminent Domain Software *)
  2.  
  3. (* Defines for EDSSpell.PAS and AbsBuff.PAS *)
  4.  
  5. {$DEFINE Shareware}       {-add period to enable commercial version}
  6.   (* You must have purchased the commercial version to enable this,  *)
  7.   (* otherwise you will not have the appropriate files necessary and *)
  8.   (* component will not compile.                                     *)
  9.  
  10. {.$DEFINE SupportOrpheus}  {-remove period to enable support for TurboPower's Orpheus}
  11.  
  12. {.$DEFINE SupportTXText}   {-remove period to enable support for TXTextControl}
  13.  
  14. {.$DEFINE SupportWPTools}  {-remove period to enable support for WPTools shareware component}
  15.  
  16. {$IFDEF Shareware}
  17.   {$IFDEF SupportOrpheus}
  18.     Cannot enable Orpheus support in Shareware version!
  19.   {$ENDIF}
  20.   {$IFDEF SupportTXText}
  21.     Cannot enable TX Text-Control support in Shareware version!
  22.   {$ENDIF}
  23.   {$IFDEF SupportWPTools}
  24.     Cannot enable WPTools support in Shareware version!
  25.   {$ENDIF}
  26. {$ENDIF}
  27.